From: kaf24@firebug.cl.cam.ac.uk Date: Thu, 13 Apr 2006 09:33:46 +0000 (+0100) Subject: The default value used to control whether the guest is set up with localtime X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16158^2~2^2~37 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=a94a960c97e51e7706c4264ac34ef59543e45e0e;p=xen.git The default value used to control whether the guest is set up with localtime or utc in the RTC was wrong. Signed-Off-By: Bruce Rogers --- diff --git a/tools/ioemu/vl.c b/tools/ioemu/vl.c index d4f305f178..9e8b8ec351 100644 --- a/tools/ioemu/vl.c +++ b/tools/ioemu/vl.c @@ -138,7 +138,7 @@ int adlib_enabled = 1; int gus_enabled = 1; int pci_enabled = 1; int prep_enabled = 0; -int rtc_utc = 0; +int rtc_utc = 1; int cirrus_vga_enabled = 1; int vga_accelerate = 1; int graphic_width = 800;